home *** CD-ROM | disk | FTP | other *** search
/ Holt Researcher: American History / Holt Researcher: American History.iso / pc / modules / tour.dxr / 00046.ls < prev    next >
Encoding:
Text File  |  2000-01-21  |  623 b   |  24 lines

  1. on enterFrame
  2.   global gCurrLabel
  3.   if the frameLabel <> 0 then
  4.     gCurrLabel = the frameLabel
  5.   end if
  6.   isMemoryAvailable("continue the tour", 1200, 500)
  7.   set the puppet of sprite 4 to 1
  8.   sprite(4).visible = 1
  9.   set the puppet of sprite 4 to 0
  10.   set the puppet of sprite 5 to 0
  11.   set the puppet of sprite 6 to 0
  12.   updateStage()
  13. end
  14.  
  15. on exitFrame
  16.   global gTourVariables, gMenuButton, gMenuExit, gTourForwardArrow, gTourBackArrow, gPlaySound
  17.   gPlaySound = 1
  18.   repeat with rc in [gMenuButton, gMenuExit, gTourForwardArrow, gTourBackArrow]
  19.     Inscope(rc)
  20.   end repeat
  21.   cursor(-1)
  22.   setHandCursor([40, 41, 42, 43])
  23. end
  24.